.square-card{
    height:300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    margin: auto;
    background-color: beige;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    overflow: hidden;
    transition: box-shadow 0.5 ease-in;
}
.square-card:hover{
    box-shadow: 0 4px 10px 0 rgba(0, 0,0,0.5);
}
.square-card .card-body{
    flex-grow: 1;
    display:flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    text-align: center;
    font-family:Josefin Sans;
    font-weight: bold;
    padding: 0px;

}
.card-img-top{
    max-height: 100px;
    object-fit: contain;
}
.card-title {
    margin: 20px;
    font-weight: bold;
    color: rgb(220 53 69);
}
.card-text{
    max-height:100px;
    flex-grow: 1;
    text-wrap:balance;
    overflow-y:auto;
    margin:5px auto;
}
.email-text{
    font-size: large;
    word-break:normal;
    overflow-wrap: break-word;
    max-width:100%;
    padding: 0px 10px;
}
.btn {
    margin-bottom:15px;
    background-color: rgb(220 53 69);
    color: white;
    font-weight: lighter;
}
.btn:hover{
    background-color: rgb(255, 53, 80);
    color: beige;
}
.address-text{
    margin-top: 0px;
}
.tag-caption{
    font-size: x-large;
}
#inquiry{
    background-color: rgba(239, 239, 239, 0.853);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    font-family:Josefin Sans;
    color: rgb(255, 53, 80);
    font-weight: bold;
}
#inquiry button{
    background-color:rgb(255, 53, 80);
    border-color:rgb(255, 53, 80);
    border: radius 100px;;
    color:white;
    font-weight: bolder;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3) ;
}